home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / prismdm2 < prev    next >
Text File  |  1997-01-21  |  562b  |  26 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 20
  5.   location <2, 10, -30>
  6.   look_at <0, 1, 0>
  7. }
  8.  
  9. light_source { <20, 20, -20> color White }
  10.  
  11. prism { 
  12.   cubic_spline 
  13.   0, // sweep the following shape from here ...
  14.   1, // ... up through here
  15.   6, // the number of points making up the shape ...
  16.  
  17.   < 3, -5>, // point#1 (control point... not on curve)
  18.   < 3,  5>, // point#2  ... THIS POINT ...
  19.   <-5,  0>, // point#3
  20.   < 3, -5>, // point#4
  21.   < 3,  5>, // point#5 ... MUST MATCH THIS POINT
  22.   <-5,  0>  // point#6 (control point... not on curve)
  23.  
  24.   pigment { Green }
  25. }
  26.